home *** CD-ROM | disk | FTP | other *** search
/ SGI Freeware 2002 November / SGI Freeware 2002 November - Disc 3.iso / dist / fw_qt3.idb / usr / freeware / Qt / examples / opengl / texture / gltexobj.h.z / gltexobj.h
C/C++ Source or Header  |  2002-04-08  |  1KB  |  56 lines

  1. /****************************************************************************
  2. ** $Id:  qt/gltexobj.h   3.0.3   edited Oct 12 12:18 $
  3. **
  4. ** Copyright (C) 1992-2000 Trolltech AS.  All rights reserved.
  5. **
  6. ** This file is part of an example program for Qt.  This example
  7. ** program may be used, distributed and modified without limitation.
  8. **
  9. *****************************************************************************/
  10.  
  11. /****************************************************************************
  12. **
  13. ** This is a simple QGLWidget displaying an openGL wireframe box
  14. **
  15. ****************************************************************************/
  16.  
  17. #ifndef GLTEXOBJ_H
  18. #define GLTEXOBJ_H
  19.  
  20. #include <qgl.h>
  21.  
  22.  
  23. class GLTexobj : public QGLWidget
  24. {
  25.     Q_OBJECT
  26.  
  27. public:
  28.  
  29.     GLTexobj( QWidget* parent, const char* name );
  30.     ~GLTexobj();
  31.  
  32. public slots:
  33.  
  34.     void        setXRotation( int degrees );
  35.     void        setYRotation( int degrees );
  36.     void        setZRotation( int degrees );
  37.     void        toggleAnimation();
  38.  
  39. protected:
  40.  
  41.     void        initializeGL();
  42.     void        paintGL();
  43.     void        resizeGL( int w, int h );
  44.  
  45.     virtual GLuint     makeObject( const QImage& tex1, const QImage& tex2 );
  46.  
  47. private:
  48.     bool animation;
  49.     GLuint object;
  50.     GLfloat xRot, yRot, zRot, scale;
  51.     QTimer* timer;
  52. };
  53.  
  54.  
  55. #endif // GLTEXOBJ_H
  56.